Welcome![Sign In][Sign Up]
Location:
Search - Bayesian classifier

Search list

[Other resourceClassifier4J

Description: Classifier4J这个Java类库为文本自动分类提供了一个API。缺省(目前)实现的API是一个贝叶斯分类器。这个类库可以用于多个目的-可能作为一个垃圾邮件过滤器或一个blog-Classifier4J Java class library for the automatic text classification provided an API. Default (current) to achieve the API is a Bayesian classifier. This library can be used for a number of purposes - as a possible spam filters or a blog
Platform: | Size: 188578 | Author: 李凯 | Hits:

[Other resourcematlab作业

Description: 模式识别一份很好的作业,包括线性分类器;最小风险贝叶斯分类器;监督学习法分层聚类分析;K-L变换提取有效特征,支持向量机-a very good operation, including linear classification; Minimum risk Bayesian classifier; Supervised learning method Hierarchical clustering analysis; K-L transform effective features, support vector machines
Platform: | Size: 2600622 | Author: 郭攀红 | Hits:

[Other resourcebow-latest.tar

Description: 贝叶斯学习算法分类文本。基于朴素贝叶斯分类器的文本分类的通用算法,是目前所知文本分类算法中最有效的一类-Bayesian text classification algorithm. Based on Bayesian classifier of the common text classification algorithm, which is known text classification algorithm the most effective one category
Platform: | Size: 243164 | Author: 代桂平 | Hits:

[Other resourcedbacl.tar

Description: dbacl是一个通用目的的digramic贝叶斯文本分类器。它可以学习你提供的文本,接着用 学到的类别来比较新的输入。它可以用于垃圾邮件过滤,或在你自己的外壳脚本中使用。 -dbacl is a general-purpose text digramic Bayesian classifier. It can learn to provide you with the text, then uses learned relatively new type of input. It can be used in spam filtering, or in your own shell scripts to use.
Platform: | Size: 356597 | Author: agang | Hits:

[JSP/JavajBNC

Description: jBNC is a Java toolkit for training, testing, and applying Bayesian Network Classifiers. Implemented classifiers have been shown to perform well in a variety of artificial intelligence, machine learning, and data mining applications. jBNC is primarily intended as a library for creation of Bayesian Classifier networks. Several algorithms for creation of networks are included. To aid testing the quality of classifier network a couple of simple command line tools for training and testing are included, see section TOOLS for more details. There is also a separate package called jBNC-WEKA that integrates jBNC with WEKA (Waikato Environment for Knowledge Analysis http://www.cs.waikato.ac.nz/~ml). jBNC-WEKA allows creation of jBNC classifiers from within WEKA, in particular, using WEKA s graphical user interface. For more info see jBNC homepage.
Platform: | Size: 828416 | Author: sakthivel | Hits:

[matlabMinimum-Bayes-classifier-error-rate

Description: 这是模式识别中最小错误率Bayes分类器设计方案。 自行完善了在不同先验概率的条件下,男、女错误率和总错误率的统计,放入各个数组当中。 全部程序由主函数、最大似然估计求取概率密度子函数、最小错误率贝叶斯分类器决策子函数三块组成。 调用最大似然估计求取概率密度子函数时,第一步获取样本数据,存储为矩阵;第二步对矩阵的每一行求和,并除以样本总数N,得到平均值向量;第三步是应用公式(3-43)采用矩阵运算和循环控制语句,求得协方差矩阵;第四步通过协方差矩阵求得方差和相关系数,从而得到概率密度函数。 调用最小错误率贝叶斯分类器决策子函数时,根据先验概率数组,通过比较概率大小判断一个体重身高二维向量代表的人是男是女。 主函数第一步打开“MAIL.TXT”和“FEMALE.TXT”文件,并调用最大似然估计求取概率密度子函数,对分类器进行训练。第二步打开“test2.txt”,调用最小错误率贝叶斯分类器决策子函数,然后再将数组中逐一与已知性别的数据比较,就可以得到不同先验概率条件下错误率的统计。 -This is the minimum error rate pattern recognition Bayes classifier design. Self- improvement prior probability in different conditions , male , female and total error rate error rate statistics , into which each array . All programs from the main function , maximum likelihood estimation subroutine strike probability density , the minimum error rate Bayesian classifier composed of decision-making three subfunctions . Strike called maximum likelihood estimate probability density subroutine , the first step to obtain the sample data , stored as a matrix the second step of the matrix, each row sum , and divided by the total number of samples N, be the average vector third step is to application of the formula ( 3-43 ) using matrix and loop control statements , obtain the covariance matrix fourth step through the variance-covariance matrix and correlation coefficient obtained , resulting in the probability density function . Call the minimum error rate decision Functions Bayesian
Platform: | Size: 4096 | Author: 崔杉 | Hits:

[matlabMinimum-Risk-Bayes-classifier

Description: 这是模式识别中最小风险Bayes分类器的设计方案。在参考例程的情况下,自行完善了在一定先验概率的条件下,男、女错误率和总错误率的统计,放入各个数组当中。 全部程序由主函数、最大似然估计求取概率密度子函数、最小错误率贝叶斯分类器决策子函数三块组成。 调用最大似然估计求取概率密度子函数时,第一步获取样本数据,存储为矩阵;第二步对矩阵的每一行求和,并除以样本总数N,得到平均值向量;第三步是应用公式(3-43)采用矩阵运算和循环控制语句,求得协方差矩阵;第四步通过协方差矩阵求得方差和相关系数,从而得到概率密度函数。 调用最小风险贝叶斯分类器决策子函数时,根据先验概率,再根据自行给出的5*5的决策表,通过比较概率大小判断一个体重身高二维向量代表的人是男是女,放入决策数组中。 主函数第一步打开“MAIL.TXT”和“FEMALE.TXT”文件,并调用最大似然估计求取概率密度子函数,对分类器进行训练。第二步打开“test2.txt”,调用最小风险贝叶斯分类器决策子函数,然后再将数组中逐一与已知性别的数据比较,就可以得到在一定先验概率条件下,决策表中不同决策的错误率的统计。 -This is a pattern recognition classifier minimum risk Bayes design .In reference to the case of routine , self- improvement in a certain a priori probability conditions, male , female and total error rate error rate statistics , into which each array . All programs from the main function , maximum likelihood estimation subroutine strike probability density , the minimum error rate Bayesian classifier composed of decision-making three subfunctions . Strike called maximum likelihood estimate probability density subroutine , the first step to obtain the sample data , stored as a matrix the second step of the matrix, each row sum , and divided by the total number of samples N, be the average vector The third step is the application of the formula ( 3-43 ) using matrix and loop control statements , obtain the covariance matrix fourth step through the variance-covariance matrix and correlation coefficient obtained , resulting in the probability density function . Bayesian classifier
Platform: | Size: 4096 | Author: 崔杉 | Hits:

[matlabComparison-of-Bayesian-and-fisher

Description: 训练错误率和交叉验证错误率相等,在样本比较大时,这个结果是可以预期的;训练错误率一般低于测试错误率,但是当样本数据比较少时,实验也出现了意外,样本多的那组测试错误率比样本少的训练错误率还要小;在本实验中,同组数据的交叉验证错误率比独立测试错误率高,这个反常现象是因为样本的原因所致,交叉验证的样本小,而独立测试时所用训练样本数目大,因而出现这种情况。分类线上,fisher准则是一条直线,而贝叶斯分类器实际上是一个类似椭圆的封闭曲线;很明显,贝叶斯分类器比fisher分类器要好。-Training error rate and cross- validation error rates are equal, the larger the sample , this result is to be expected training error rate is generally lower than the test error rate , but when comparing the sample data came from the experiment there was an accident, that more samples group test error rate less than the training sample error rate is smaller In this experiment, the same set of data cross-validation error rate than independent test error rate, this anomaly is because the sample of reasons , cross-validation sample is small,And independent testing large number of training samples used , resulting in this situation.Classification online , fisher criterion is a straight line , while the Bayesian classifier is actually a closed curve similar to elliptical It is clear that the Bayesian classifier is better than the fisher classifier .
Platform: | Size: 8192 | Author: 崔杉 | Hits:

[Windows DevelopBayesian

Description: The Bayesian classifier is a fundamental classification technique.
Platform: | Size: 243712 | Author: richard | Hits:

[JSP/JavanaiveBayesian-classifier

Description: 朴素贝叶斯分类器的JAVA版本,目前只是简单版本,希望大家一起来补充哈!-naive Bayesian classifier
Platform: | Size: 2048 | Author: 佐罗白 | Hits:

[2D Graphicclassifier

Description: 多种分类器gui界面,包括支持向量机、贝叶斯分类器、感知机、神经网络等-Multiple classifier GUI interface, including support vector machines, Bayesian classifier, perceptron neural network
Platform: | Size: 3072 | Author: 张弛 | Hits:

[OtherBayes-classifier-code

Description: 朴素贝叶斯分类器程序代码 采用朴素贝叶斯分类器算法,使用C++语言对英文文本进行分类,实现了一个文本分类器功能-Naive Bayesian classifier program code using Bayesian classification algorithm, using C++ language English text classification, to achieve a text classification function
Platform: | Size: 214016 | Author: 李宁 | Hits:

[AI-NN-PRBayesian

Description: 贝叶斯分类器的基本实现,数据可以自行添加,中英文皆可-Bayesian classifier basic implementation, the data can add, in English or
Platform: | Size: 2710528 | Author: LZR | Hits:

[Graph RecognizeBayesian-classifier

Description: matlab基于贝叶斯的手写输入数字识别代码-Based on Bayesian handwriting matlab digital identification code
Platform: | Size: 151552 | Author: 贾若雪 | Hits:

[Data structsnaive-bayesian-classifier

Description: 朴素贝叶斯分类,可以添加到自己的工程中,记得稍加修改-nbc classifier
Platform: | Size: 6039552 | Author: 尹超 | Hits:

[OtherBayes-classifier

Description: 贝叶斯分类器:贝叶斯分类的基础是概率推理,就是在各种条件的存在不确定,仅知其出现概率的情况下,如何完成推理和决策任务。-Bayesian classifier
Platform: | Size: 5212160 | Author: 1234lily | Hits:

[Internet-NetworkNaive-Bayesian-Classifier

Description: 基于matlab朴素贝叶斯分类,很好的例子-Naive Bayes classifier based on matlab,
Platform: | Size: 3072 | Author: | Hits:

[matlabfive-kinds-bayes-classifier

Description: 基于正态分布数据的五种类型的贝叶斯分类器-Based on normal distribution data of five different types of bayesian classifier
Platform: | Size: 15360 | Author: 郑欣 | Hits:

[OtherBayesian

Description: bayesian classifier used to classify data using existing training data set, for example we can find whether client is bank defaulter or not using existing data set
Platform: | Size: 3072 | Author: johny | Hits:

[Otherclaspifier-classifier-classifier

Description: A Bayesian classifier for pattern recognition
Platform: | Size: 33792 | Author: tkroob  | Hits:
« 1 2 3 4 56 7 8 9 10 ... 18 »

CodeBus www.codebus.net